UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

27 lines (26 loc) 854 B
import { GoabDropdownItemMountType } from '@abgov/ui-components-common'; interface WCProps { value: string; label?: string; filter?: string; mount?: GoabDropdownItemMountType; name?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-dropdown-item": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabDropdownItemProps { value: string; label?: string; filter?: string; testId?: string; mountType?: GoabDropdownItemMountType; name?: string; } export declare function GoabDropdownOption(props: GoabDropdownItemProps): import("react/jsx-runtime").JSX.Element; export declare function GoabDropdownItem({ value, label, filter, name, mountType, }: GoabDropdownItemProps): import("react/jsx-runtime").JSX.Element; export {};