/** * Copyright (c) 2023 Google LLC * SPDX-License-Identifier: MIT */ export declare const multiInputWidth = 280; export interface PlacementProps { /** * Placement in a group of adjacent inputs */ placement?: 'left' | 'middle' | 'right'; } export declare const inputPlacementStyle: ({ placement }: PlacementProps) => string; export interface TokenStyleProps { tokenStyle?: boolean; } export declare const tokenStylePlaceholder: (props: TokenStyleProps) => "" | import("styled-components").FlattenInterpolation>;