import { ReactNode } from 'react'; export interface PlaceholderInputProps { /** * Setting children will directly render them. */ children?: ReactNode; /** * Called when the add button is clicked. */ onAddClick?: () => void; } /** * A placeholder for a block. */ export declare function PlaceholderInput({ children, onAddClick }: PlaceholderInputProps): JSX.Element; //# sourceMappingURL=placeholderInput.d.ts.map