/// import { CSS } from '@stitches/react'; declare const DesignTokensTable: (props: DesignTokensTableType) => JSX.Element; declare type TokenType = { value: string; type: string; filePath?: string; isSource?: boolean; original?: any; name: string; comment?: string; themeable?: boolean; attributes?: { category?: string; type?: string; item?: string; subitem?: string; state?: string; [key: string]: any; }; path?: string[]; [key: string]: any; }; declare type TokensType = { [key in string]: TokenType | TokensType; }; declare type DesignTokensTableType = { tokens: TokensType; css?: CSS; noStyle?: boolean; }; export { DesignTokensTable, DesignTokensTableType, TokenType, TokensType };