/// <reference types="react" />
import Box from './Box';
declare namespace Placeholder {
    type Input = Box.DefaultInput & {
        color?: 'cloud' | 'white';
    };
}
declare const Placeholder: React.FC<Placeholder.Input>;
export { Placeholder, Placeholder as default };
