import React, { ReactNode } from "react";
interface FlexrowProps {
    jarak?: string;
    justify?: string;
    align?: string;
    children?: ReactNode;
}
export default function StkFlexrow({ jarak, justify, align, children }: FlexrowProps): React.JSX.Element;
export {};
