import type { LnUrlPayResponse } from '../types';
export declare const isUrl: (url: string | null) => url is string;
export declare const isValidAmount: ({ amount, min, max, }: {
    amount: number;
    min: number;
    max: number;
}) => boolean;
export declare const parseLnUrlPayResponse: (data: Record<string, any>) => LnUrlPayResponse;
//# sourceMappingURL=lnurl.d.ts.map