import React from 'react';
import { CSSProperties } from 'glamor';
import { PlanSelectionCardProps } from './PlanSelectionCard';
import { ApphouseComponent } from '../components/component.interfaces';
import { BoxSizeStyles } from '../styles/defaults/themes.interface';
export interface PlanSelectionPageStyles {
    container?: CSSProperties;
}
export interface PlanSelectionPageProps extends ApphouseComponent<PlanSelectionPageStyles> {
    cards: PlanSelectionCardProps[];
    /**
     * The size of the card.
     * @optional
     * @default 'm'
     */
    size?: keyof BoxSizeStyles;
}
export declare const PlanSelectionPage: React.FC<PlanSelectionPageProps>;
