import type * as Common from "../common/types";
export type Size = "small" | "medium" | "large";
export type CarrierType = "airline" | "bus" | "train" | "ferry" | "private_transfer" | "kiwicom";
export interface Carrier {
    code: string;
    name: string;
    type?: CarrierType;
}
export interface Props extends Common.Globals {
    readonly size?: Size;
    readonly rounded?: boolean;
    readonly carriers: Common.Carrier[];
    readonly inlineStacked?: boolean;
    readonly ariaHidden?: boolean;
}
//# sourceMappingURL=types.d.ts.map