import { CLinkProps } from '../link/CLink'; import { PolymorphicRefForwardingComponent } from '../../helpers'; export interface CDropdownItemProps extends CLinkProps { /** * A string of all className you want applied to the component. */ className?: string; } export declare const CDropdownItem: PolymorphicRefForwardingComponent<'a', CDropdownItemProps>;