kolenkainc-honohub-react
Version:
React admin panel for honohub
21 lines (20 loc) • 726 B
TypeScript
import { type HTMLAttributes, type PropsWithChildren } from "react";
export type CommonFilterWrapper = PropsWithChildren<{
name: string;
label: string;
}>;
export declare function CommonFilterWrapper({ label, name, children, }: CommonFilterWrapper): import("react/jsx-runtime").JSX.Element;
export type FilterList = Omit<HTMLAttributes<HTMLElement>, "children"> & {
items: {
label: string;
value: string;
}[];
name: string;
};
export declare const FilterList: import("react").ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLElement>, "children"> & {
items: {
label: string;
value: string;
}[];
name: string;
} & import("react").RefAttributes<HTMLDivElement>>;