import React from 'react';

interface SilentSheetProps {
    placeholder?: string;
    onChange?: (text: string) => void;
}
declare const SilentSheet: React.FC<SilentSheetProps>;

export { SilentSheet };
