import { StyleOptions } from '../../types'; export interface PerspectiveOriginProps { /** * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property. * * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin */ style$PerspectiveOrigin: T; } export declare const perspectiveOrigin: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;