import type { Generic } from 'adopted-style-sheets';
declare const labelAlignPropTypeOptions: readonly ["left", "right"];
export type LabelAlignPropType = (typeof labelAlignPropTypeOptions)[number];
export type PropLabelAlign = {
    labelAlign: LabelAlignPropType;
};
export declare const validateLabelAlign: (component: Generic.Element.Component, value?: LabelAlignPropType) => void;
export {};
