declare type ParamsStatic = {
    merchantKey: string;
    merchantName: string;
    amount?: number;
    merchantCity?: string;
    merchantCep?: string;
    description?: string;
    identifier?: string;
    isUnique?: boolean;
};
export declare function staticPix({ merchantKey, merchantName, amount, merchantCity, merchantCep, description, identifier, isUnique }: ParamsStatic): string;
declare type ParamsDinamic = {
    merchantName: string;
    merchantCity?: string;
    merchantCep?: string;
    amount: number;
    location: string;
    identifier?: string;
    isUnique?: boolean;
};
export declare function dinamicPix({ merchantName, merchantCity, merchantCep, amount, location, identifier, isUnique }: ParamsDinamic): string;
export {};
