import { BaseDomProps } from "@hydrophobefireman/kit"; import { RefType } from "@hydrophobefireman/ui-lib"; export interface DropdownProps { parent: RefType; sibling: RefType; children?: any; class?: any; className?: any; style?: BaseDomProps["style"] | null; } export {};