import React from 'react'; type TOptions = { label?: string; icon?: (props: React.ComponentProps<'svg'>) => JSX.Element; current?: boolean; count?: string; href?: string; onClick?: () => void; }; type TSecondaryOptions = { label?: string; href?: string; }; interface IVerticalNavigationKitProps { options?: TOptions[]; classes?: Partial>; onWhite?: boolean; secondary?: { title: React.ReactNode; options: TSecondaryOptions[]; }; className?: string; } declare const VerticalNavigationKit: React.FC; export default VerticalNavigationKit; export type { TOptions as TVerticalNavigationKitOptions }; //# sourceMappingURL=index.d.ts.map