import * as beet from '@miraplex/beet'; import { AuthorizationData } from './AuthorizationData'; export type UseArgsRecord = { V1: { authorizationData: beet.COption; }; }; export type UseArgs = beet.DataEnumKeyAsKind; export declare const isUseArgsV1: (x: UseArgs) => x is { __kind: "V1"; } & Omit<{ authorizationData: beet.COption; }, "void"> & { __kind: 'V1'; }; export declare const useArgsBeet: beet.FixableBeet<{ __kind: "V1"; } & Omit<{ authorizationData: beet.COption; }, "void">, { __kind: "V1"; } & Omit<{ authorizationData: beet.COption; }, "void">>;