declare type Props = { color: string; opacity?: number; }; export declare const convertColorToRgba: ({ color, opacity }: Props) => string | undefined; export {};