wix-style-react
Version:
57 lines (46 loc) • 1.13 kB
TypeScript
import * as React from 'react';
export interface TableToolbarProps {
dataHook?: string;
className?: string;
}
interface ItemGroupProps {
dataHook?: string;
className?: string;
position?: string;
}
interface ItemProps {
dataHook?: string;
className?: string;
layout?: 'button';
}
interface TitleProps {
className?: string;
dataHook?: string;
}
interface LabelProps {
className?: string;
dataHook?: string;
}
interface DividerProps {
className?: string;
dataHook?: string;
}
interface SelectedCountProps {
className?: string;
dataHook?: string;
}
declare const ItemGroup: React.FC<ItemGroupProps>;
declare const Item: React.FC<ItemProps>;
declare const Title: React.FC<TitleProps>;
declare const Label: React.FC<LabelProps>;
declare const Divider: React.FC<DividerProps>;
declare const SelectedCount: React.FC<SelectedCountProps>;
export const TableToolbar: React.FC<TableToolbarProps> & {
ItemGroup: typeof ItemGroup;
Item: typeof Item;
Title: typeof Title;
Label: typeof Label;
Divider: typeof Divider;
SelectedCount: typeof SelectedCount;
};
export default TableToolbar;