export declare type VerificationProps = { verified?: boolean; title?: string; size?: number; color?: string; backgroundColor?: string; }; declare const Verification: ({ verified, title, size, color, backgroundColor, }: VerificationProps) => JSX.Element | null; export default Verification;