import { StyleOptions } from '../../types'; export interface OrderProps { /** * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order. * * @see https://developer.mozilla.org/docs/Web/CSS/order */ style$Order: T; } export declare const order: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;