import React, { type ComponentType } from 'react'; import { Column as ColumnIcon } from '@splunk/visualization-icons/placeholders'; interface ContainerProps { width: number | string; height: number | string; backgroundColor?: string; } interface MessageProps { message: string; } export interface WaitingForInputProps extends ContainerProps, MessageProps { PlaceholderIcon?: ComponentType; } declare const VizWaitingForInput: ({ message, backgroundColor, width, height, PlaceholderIcon, }: WaitingForInputProps) => React.JSX.Element; export default VizWaitingForInput; //# sourceMappingURL=VisualizationWaitingForInput.d.ts.map