import { Property } from 'csstype';
import { StyleFnConfig } from './buildStyleFns';
import { SystemPropValues } from './systemProps';
/** style props to for depth styles
 * @deprecated
 */
export type DepthStyleProps = {
    /** sets [CSS box-shadow styles](https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow)
     * @deprecated
     */
    boxShadow?: Property.BoxShadow;
    /**
     * - sets [CSS box-shadow styles](https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow)
     * - system tokens: `depth`
     * @deprecated
     */
    depth?: SystemPropValues['depth'];
};
/** @deprecated */
export declare const depthStyleFnConfigs: StyleFnConfig[];
/** @deprecated */
export declare const depthStyleFns: import("./buildStyleFns").StyleFns;
/**
 * A style prop function that takes component props and returns depth styles from Canvas token values.
 * If no `DepthStyleProps` are found, it returns an empty object.
 *
 * @example
 * ```tsx
 * const DepthExample = () => (
 *   <Box depth={3}>Hello, box shadows!</Box>
 * );
 * ```
 * @deprecated
 */
export declare const depth: (props: DepthStyleProps) => {};
//# sourceMappingURL=depth.d.ts.map