declare type Label = {
    issuer: string;
    account: string;
};
declare type Query = {
    secret: string;
    issuer: string;
};
export declare type Totp = {
    fullUri: string;
    type: string;
    label: Label;
    query: Query;
};
export declare const parseTotpUri: (uri: string) => Totp;
export {};
