import type { LayoutProps } from './types'; export type ComponentProps = Partial & { className?: string | undefined; style?: React.CSSProperties | undefined; } & { [key: string]: unknown; }; /** * Превращает layout свойства в нужные значения className/style * @param props - все пропы компонента * @returns измененные свойства */ export declare function resolveLayoutProps(props: T & { className?: string | undefined; style?: React.CSSProperties | undefined; }): T & { className?: string | undefined; style?: React.CSSProperties | undefined; }; //# sourceMappingURL=resolveLayoutProps.d.ts.map