import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { FlowbiteColors } from '../Flowbite/FlowbiteTheme'; export interface SidebarCTAProps extends PropsWithChildren, 'color'>> { color?: keyof SidebarCTAColors; } export interface SidebarCTAColors extends Pick { [key: string]: string; } declare const SidebarCTA: FC; export default SidebarCTA;