ProposalSubmitted: PlainDescriptor<
    {
        proposal_action: Enum<
            {
                AddLocation: [
                    { digest: FixedSizeBinary<4>; geohash: FixedSizeBinary<5> },
                    { lat: bigint; lon: bigint },
                ];
                Petition: [
                    | { digest: FixedSizeBinary<4>; geohash: FixedSizeBinary<5> }
                    | undefined,
                    Binary,
                ];
                RemoveLocation: [
                    { digest: FixedSizeBinary<4>; geohash: FixedSizeBinary<5> },
                    { lat: bigint; lon: bigint },
                ];
                SetInactivityTimeout: number;
                SpendNative: [
                    | { digest: FixedSizeBinary<4>; geohash: FixedSizeBinary<5> }
                    | undefined,
                    SS58String,
                    bigint,
                ];
                UpdateCommunityMetadata: [
                    { digest: FixedSizeBinary<4>; geohash: FixedSizeBinary<5> },
                    {
                        announcement_signer?: Enum<{ Bip340: FixedSizeBinary<(...)> }>;
                        assets: Binary;
                        name: Binary;
                        rules: Enum<
                            { BeeDance: undefined; LoCo: undefined; LoCoFlex: undefined },
                        >;
                        symbol: Binary;
                        theme?: Binary;
                        url?: Binary;
                    },
                ];
                UpdateDemurrage: [
                    { digest: FixedSizeBinary<4>; geohash: FixedSizeBinary<5> },
                    bigint,
                ];
                UpdateNominalIncome: [
                    { digest: FixedSizeBinary<4>; geohash: FixedSizeBinary<5> },
                    bigint,
                ];
            },
        >;
        proposal_id: bigint;
    },
>