/// <reference types="react" />
import Box from './Box';
declare namespace Card {
    type Input = Box.DefaultInput & {};
    type Methods = React.FC<Input> & {
        Border: React.FC<Input>;
        Plain: React.FC<Input>;
        Cloud: React.FC<Input>;
        Shadow: React.FC<Input>;
    };
}
declare const Card: Card.Methods;
export { Card, Card as default };
