import { VariantProps } from "class-variance-authority"; import React from "react"; export type OptionTableProps = Readonly<{ children: React.ReactNode; }>; export declare function OptionTable({ children, ...rest }: OptionTableProps): React.JSX.Element; export declare namespace OptionTable { export { OptionTableRow as Row }; } declare const optionTableRowCva: (props?: ({ type?: "default" | "stack" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type OptionTableRowCvaProps = VariantProps; export type OptionTableRowProps = Readonly<{ title: React.ReactNode; label: React.ReactNode; preview?: React.ReactNode; divider?: boolean; } & OptionTableRowCvaProps>; export declare const OptionTableRow: ({ title, label, preview, type, divider, ...rest }: OptionTableRowProps) => React.JSX.Element; export {}; //# sourceMappingURL=OptionTable.d.ts.map