import { GetServerSidePropsContext } from 'next'; declare function CheckoutPage(): JSX.Element; export declare const getServerSideProps: (context: GetServerSidePropsContext) => Promise<{ redirect: { permanent: boolean; destination: string; }; props: { dehydratedState?: undefined; }; } | { props: { dehydratedState: import("react-query/hydration").DehydratedState; }; redirect?: undefined; }>; export default CheckoutPage;