import { type CSSProperties, type ElementType } from 'react'; import { type SpiritGridProps } from '../../types'; interface GridCSSProperties extends CSSProperties { [key: string]: string | undefined | number; } export interface GridStyles { classProps: string; props: T; styleProps: GridCSSProperties; } export declare function useGridStyleProps(props: SpiritGridProps): GridStyles>; export {};