@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
16 lines • 579 B
TypeScript
import { RefObject } from 'react';
export interface FilterRef {
filterText?: string;
}
export interface PaginationRef {
currentPageIndex?: number;
totalPageCount?: number;
}
interface TableComponentsContextProps {
filterRef: RefObject<FilterRef>;
paginationRef: RefObject<PaginationRef>;
}
export declare const TableComponentsContextProvider: import("react").Provider<TableComponentsContextProps | null>;
export declare const useTableComponentsContext: () => TableComponentsContextProps | null;
export {};
//# sourceMappingURL=table-component-context.d.ts.map