/// <reference types="react" />
import { Box } from '../atoms';
declare namespace Plate {
    type Input = {
        size?: 'MIN' | 'XS' | 'S' | 'R' | 'L' | 'XL' | 'MAX';
    } & Box.DefaultInput;
}
declare const Plate: React.FC<Plate.Input>;
export { Plate, Plate as default };
