/// interface Props { name: string; id: string; selected?: boolean; disabled?: boolean; label?: string; url: string; onChange?: (selected: boolean) => void; } export declare const DSPictureOption: (props: Props) => JSX.Element; export {};