import type { BottomSheet as Sheet } from "../../../containers/bottomsheets/BottomSheet";
import type { CurrencyPad } from "../../../parts/numberpads/currency/Currency";
export interface OrderPad extends CurrencyPad, Sheet {
    label?: string;
    placeholder?: number | string;
    sub?: {
        color?: string;
        value?: number | string;
        unit?: string;
    };
    unit?: string;
    padding?: number;
    onChange?: Function;
}
export default function OrderPad(props: OrderPad): import("react").JSX.Element;
//# sourceMappingURL=OrderPad.d.ts.map