import type { CSSProperties } from 'react'; declare const ratings: readonly [{ readonly imgNotSelected: string; readonly imgSelected: string; readonly value: 1; }, { readonly imgNotSelected: string; readonly imgSelected: string; readonly value: 2; }, { readonly imgNotSelected: string; readonly imgSelected: string; readonly value: 3; }, { readonly imgNotSelected: string; readonly imgSelected: string; readonly value: 4; }, { readonly imgNotSelected: string; readonly imgSelected: string; readonly value: 5; }]; type Value = (typeof ratings)[number]['value']; type CustomerSatisfactionProps = { value: Value; onChange: (rating: Value) => void; 'data-testid'?: string; className?: string; style?: CSSProperties; }; export declare function CustomerSatisfaction({ value, onChange, 'data-testid': dataTestId, className, style, }: CustomerSatisfactionProps): import("react").JSX.Element; export declare namespace CustomerSatisfaction { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map