/// interface ImageAltControlProps { readOnly?: boolean; altText: string; selected?: boolean; onValueChange: (value: string) => void; } export declare function ImageAltControl(props: ImageAltControlProps): JSX.Element; export {};