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