import type { StoryObj } from '@storybook/react';
declare const meta: {
    title: string;
    component: (props: import("../utils/payment-gateway").IPayment) => import("react").JSX.Element;
    parameters: {
        layout: string;
    };
    tags: string[];
    args: {
        publicKey: string;
        amount: number;
        currency: "THB";
        paymentMethod: "credit_card";
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
