declare type JustifyContentType = 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around'; export declare const getJustifyContent: (justify?: string | undefined) => JustifyContentType | undefined; export {};