/// import type { SvgProps } from 'react-native-svg'; interface DialogCloseProps extends SvgProps { circleFill?: string; } declare const DialogClose: ({ fill, circleFill, ...rest }: DialogCloseProps) => JSX.Element; export default DialogClose;