interface PixComponentProps {
    expirationTime?: number;
    pixURL: string;
    error?: {
        isError: boolean;
        onClickBack: () => void;
    };
    isPaid?: boolean;
    pixImage: string;
    isSucess?: boolean;
    pixValor: string;
    fastCheckout?: boolean;
}
export declare function Pix({ error, pixValor, pixImage, pixURL, isSucess, isPaid, fastCheckout, expirationTime, }: PixComponentProps): import("react/jsx-runtime").JSX.Element;
export {};
