import React from 'react'; interface PictureIconProps { style?: any; size: number; cameraKey: string; onChange: (any: any) => void; } declare const PictureIcon: ({ style, size, cameraKey, onChange }: PictureIconProps) => React.JSX.Element; export default PictureIcon;