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