@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
14 lines (13 loc) • 528 B
TypeScript
import PagePanelContainer from './PagePanelContainer';
import { Field, Actions, ClearButton, SearchButton, LoadingButton } from './sub';
import { PanelGroup } from './shared';
declare type PagePanelComponent = typeof PagePanelContainer & {
Group: typeof PanelGroup;
Field: typeof Field;
Actions: typeof Actions;
ClearButton: typeof ClearButton;
SearchButton: typeof SearchButton;
LoadingButton: typeof LoadingButton;
};
declare const PagePanel: PagePanelComponent;
export default PagePanel;