import * as web3 from '@solarti/web3.js'; import * as beet from '@miraplex/beet'; export type ProgrammableConfigRecord = { V1: { ruleSet: beet.COption; }; }; export type ProgrammableConfig = beet.DataEnumKeyAsKind; export declare const isProgrammableConfigV1: (x: ProgrammableConfig) => x is { __kind: "V1"; } & Omit<{ ruleSet: beet.COption; }, "void"> & { __kind: 'V1'; }; export declare const programmableConfigBeet: beet.FixableBeet<{ __kind: "V1"; } & Omit<{ ruleSet: beet.COption; }, "void">, { __kind: "V1"; } & Omit<{ ruleSet: beet.COption; }, "void">>;