declare const alignLookup: {
    readonly left: "start";
    readonly center: "center";
    readonly right: "end";
    readonly stretch: "stretch";
};
export declare type Align = keyof typeof alignLookup;
export declare const alignToAlignItems: (prop?: import("@spark-web/theme").ResponsiveProp<"left" | "right" | "center" | "stretch"> | undefined) => "start" | "center" | "stretch" | "end" | {
    mobile: "start" | "center" | "stretch" | "end" | undefined;
    tablet: "start" | "center" | "stretch" | "end" | undefined;
    desktop: "start" | "center" | "stretch" | "end" | undefined;
    wide: "start" | "center" | "stretch" | "end" | undefined;
} | undefined;
export {};
