import { CSSProperties, PropsWithChildren } from 'react'; export interface InkeepShadowProps extends PropsWithChildren { withCss?: boolean; wrapperStyles?: CSSProperties; customStyles?: React.ReactNode; } export declare const InkeepShadow: (props: InkeepShadowProps) => string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined;