import { ShadowProps, COMPONENT_SHADOW_DEFAULTS } from '../theme/shadow'; import { PlatformBlocksTheme } from '../theme/types'; /** * Helper to extract shadow props from component props */ export declare function extractShadowProps(props: T): { shadowProps: ShadowProps; otherProps: Omit; }; /** * Utility function to generate shadow styles from props */ export declare function getShadowStyles(shadowProps: ShadowProps, theme: PlatformBlocksTheme, componentType?: keyof typeof COMPONENT_SHADOW_DEFAULTS): Record;