import { types } from "typestyle"; /** * * If you have more than one child prefer horizontal,vertical */ export declare const flexRoot: types.CSSProperties; export declare const horizontal: types.CSSProperties; export declare const horizontalReverse: types.CSSProperties; export declare const vertical: types.CSSProperties; export declare const wrap: types.CSSProperties; /** * If you want items to be sized automatically by their children use this * This is because of a bug in various flexbox implementations: http://philipwalton.com/articles/normalizing-cross-browser-flexbox-bugs/ * Specifically bug 1 : https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored */ export declare const content: types.CSSProperties; export declare const stretch: (stretch?: number) => types.CSSProperties; export declare const start: types.CSSProperties; export declare const center: types.CSSProperties; export declare const end: types.CSSProperties; export declare const baseline: types.CSSProperties; export declare const startJustified: types.CSSProperties; export declare const centerJustified: types.CSSProperties; export declare const endJustified: types.CSSProperties; export declare const betweenJustified: types.CSSProperties; export declare const aroundJustified: types.CSSProperties; export declare const crossAxisStretch: types.CSSProperties; export declare const crossAxisStart: types.CSSProperties; export declare const crossAxisCenter: types.CSSProperties; export declare const crossAxisEnd: types.CSSProperties; //# sourceMappingURL=flex.d.ts.map